home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 January / PCWorld_2003-01_cd.bin / Software / Vyzkuste / rychlokurz / httrack.exe / {app} / src / htsmodules.h < prev    next >
C/C++ Source or Header  |  2002-11-17  |  4KB  |  108 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: htsmodules.h subroutines:                              */
  34. /*       external modules (parsers)                             */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. #ifndef HTS_MODULES
  39. #define HTS_MODULES
  40.  
  41.  
  42. /* Function type to add links inside the module 
  43.   link : link to add (absolute or relative)
  44.   str : structure defined below
  45.   Returns 1 if the link was added, 0 if not
  46. */
  47. typedef struct htsmoduleStruct htsmoduleStruct;
  48. typedef int (* t_htsAddLink)(htsmoduleStruct* str, char* link);
  49.  
  50. /* Structure passed to the module */
  51. struct htsmoduleStruct {
  52.   /* Read-only elements */
  53.   char* filename;                 /* filename (C:\My Web Sites\...) */
  54.   int   size;                     /* size of filename (should be > 0) */
  55.   char* mime;                     /* MIME type of the object */
  56.   char* url_host;                 /* incoming hostname (www.foo.com) */
  57.   char* url_file;                 /* incoming filename (/bar/bar.gny) */
  58.   
  59.   /* Write-only */
  60.   char* err_msg;                  /* if an error occured, the error message (max. 1KB) */
  61.   
  62.   /* Read/Write */
  63.   int relativeToHtmlLink;         /* set this to 1 if all urls you pass to addLink
  64.                                   are in fact relative to the html file where your
  65.                                   module was originally */
  66.   
  67.   /* Callbacks */
  68.   t_htsAddLink addLink;           /* call this function when links are 
  69.                                   being detected. it if not your responsability to decide
  70.                                   if the engine will keep them, or not. */
  71.  
  72.   /* Optionnal */
  73.   char* localLink;                /* if non null, the engine will write there the local
  74.                                   relative filename of the link added by addLink(), or
  75.                                   the absolute path if the link was refused by the wizard */
  76.   int localLinkSize;              /* size of the optionnal buffer */
  77.   
  78.   /* ---- ---- ---- */
  79.  
  80.   /* Internal use - please don't touch */
  81.   void* liens;
  82.   void* opt;
  83.   void* back;
  84.   int back_max;
  85.   void* cache;
  86.   void* hashptr;
  87.   int numero_passe;
  88.   int add_tab_alloc;
  89.   /* */
  90.   int* lien_tot_;
  91.   int* ptr_;
  92.   int* lien_size_;
  93.   char** lien_buffer_;
  94.   /* Internal use - please don't touch */
  95.  
  96. };
  97.  
  98. extern void htspe_init(void);
  99. extern int hts_parse_externals(htsmoduleStruct* str);
  100.  
  101. extern int gz_is_available;
  102. extern int swf_is_available;
  103. extern int SSL_is_available;
  104. extern int V6_is_available;
  105. extern char WHAT_is_available[64];
  106.  
  107. #endif
  108.